home *** CD-ROM | disk | FTP | other *** search
/ Clickx 115 / Clickx 115.iso / software / tools / windows / tails-i386-0.16.iso / live / filesystem.squashfs / usr / bin / tails-update-frontend < prev    next >
Encoding:
Text File  |  2012-11-13  |  391 b   |  22 lines

  1. #!/usr/bin/perl 
  2.  
  3. eval 'exec /usr/bin/perl  -S $0 ${1+"$@"}'
  4.     if 0; # not running under some shell
  5.  
  6. =head1 NAME
  7.  
  8. tails-update-frontend - lead Tails user through the process of updating the system, if needed
  9.  
  10. =cut
  11.  
  12. use strict;
  13. use warnings FATAL => 'all';
  14. use 5.10.1;
  15.  
  16. use FindBin;
  17. use lib "$FindBin::Bin/../lib";
  18.  
  19. use Tails::IUK::Frontend;
  20.  
  21. Tails::IUK::Frontend->new_with_options()->run;
  22.